home *** CD-ROM | disk | FTP | other *** search
- module oRoot1 is cBox
- with
- Flags is $00000152;
- release Editor:
- IOWindow is {$00000135,$0000002A,$0000021F,$000003BF,$00000000,$00000000,$00000000,$00000000};
- LayoutWindow is {$000001A3,$0000002E,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
- end;
- Name is "Root";
- Enabled is false;
-
- Width is 800; Height is 600;
-
-
- Elements is [
- oMovie2
- ];
- end;
-
- object oMovie2 is cMPEGMovie
- with
- Flags is $00000054;
- Name is "Movie";
- Cursor is oEmptyCursor;
- AdjustX is AlignToCenter; AdjustY is AlignToMiddle;
- Width is 800; Height is 600;
-
- URL is "data/Videos/pubgeode.mpg"; URLOption is GetDiskURL;
- Events is [
- cOnscreenEvent
- with Flags is $00000004;
- Commands is [
- cTokenCommand
- with TokenName is "stop"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
- cRunCommand
- with Target is oTargetSelf; Rewind is true; end
- ];
- end,
- cMouseDownEvent
- with Flags is $00000004;
- Commands is [
- cBrowseCommand
- with URL is "data/Interface/pubgen.k"; URLOption is GetDiskURL; end
- ];
- end,
- cFinishedEvent
- with Flags is $00000004;
- Commands is [
- cBrowseCommand
- with URL is "data/Interface/pubgen.k"; URLOption is GetDiskURL; end
- ];
- end
- ];
- end;